GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( b06f31...22c0df )
by John
02:10 queued 22s
created

index.js ➔ install   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
1
import Vue from 'vue';
2
import VueCsvImport from "./components/VueCsvImport";
3
4
function install(Vue, options = {}) {
5
    Vue.component(options.componentName || 'VueCsvImport', VueCsvImport);
6
}
7
8
if (typeof window !== undefined && window.Vue && window.Vue === Vue) {
9
    install(window.Vue);
10
}
11
12
export { VueCsvImport, install };
13
14
export default VueCsvImport;
15